home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / DomonicDefence4.swf / scripts / DefineButton2_403 / BUTTONCONDACTION on(press).as
Encoding:
Text File  |  2005-09-27  |  610 b   |  28 lines

  1. on(press){
  2.    if(_root.hardah == "No Harder")
  3.    {
  4.       _root.hardah = "Little Harder";
  5.       _root.hardining = 1.2;
  6.    }
  7.    else if(_root.hardah == "Little Harder")
  8.    {
  9.       _root.hardah = "Much Harder";
  10.       _root.hardining = 1.6;
  11.    }
  12.    else if(_root.hardah == "Much Harder")
  13.    {
  14.       _root.hardah = "2 X Harder";
  15.       _root.hardining = 2;
  16.    }
  17.    else if(_root.hardah == "2 X Harder")
  18.    {
  19.       _root.hardah = "3 X Harder";
  20.       _root.hardining = 3;
  21.    }
  22.    else if(_root.hardah == "3 X Harder")
  23.    {
  24.       _root.hardah = "No Harder";
  25.       _root.hardining = 1;
  26.    }
  27. }
  28.